Conversation
|
Warning Rate limit exceeded
⌛ How to resolve this issue?After the wait time has elapsed, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout. Please see our FAQ for further information. 📒 Files selected for processing (1)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
Greptile SummaryAdds a GitHub Actions workflow to automatically add issues and PRs to the RequestNetwork project board when they are opened.
Confidence Score: 5/5
Important Files Changed
Sequence DiagramsequenceDiagram
participant GH as GitHub Events
participant Workflow as auto-project.yml
participant Reusable as RequestNetwork/.github<br/>add-to-project.yml
participant Project as Project Board
alt Issue Opened
GH->>Workflow: issues.opened event
Workflow->>Reusable: Call reusable workflow
Note over Workflow,Reusable: Pass PROJECT_TOKEN secret
Reusable->>Project: Add issue to project board
end
alt PR Opened
GH->>Workflow: pull_request.opened event
Workflow->>Reusable: Call reusable workflow
Note over Workflow,Reusable: Pass PROJECT_TOKEN secret
Reusable->>Project: Check for linked issues
alt No linked issues
Reusable->>Project: Add PR to project board
else Has linked issues
Note over Reusable,Project: Skip (issue already tracked)
end
end
|
Adds workflow to automatically add issues and PRs to the project board.
Uses the reusable workflow from RequestNetwork/.github.
Closes RequestNetwork/public-issues#130